Linked Properties
Retrieves properties that belong to the same owner.
Endpoint URL
https://api.propertyreach.com/v1/linked-propertiesCopy
propertyId
int
PropertyReach Property ID
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
county
string
The county where the property is located.
fips
string
The Federal Information Processing Standard (FIPS) code for the property's location.
apn
string
The Assessor’s Parcel Number (APN), a unique identifier assigned to the property by the local tax authority.
id
int
Property ID
streetAddress
string
What's the property street address
city
string
The city where the property is located.
state
string
State search criteria
zip
string
Property zip code
county
string
The county where the property is located.
bedrooms
int
The total number of bedrooms in the property.
bathrooms
decimal
The total number of bathrooms in the property.
squareFeet
int
Property square footage
lotSquareFeet
int
The total square footage of the property’s lot.
landUse
string
Land use classification
ownerNames
string
Owner names
ownershipMonths
int
The number of months the current owner has held the property.
loanBalance
int
Outstanding loan balance
estimatedValue
int
The estimated market value of the property.
vacant
boolean
Is this property vacant
primary
boolean
Whether this is the primary property (situs address matches mailing address)
status
decimal
required
Response status
message
string
required
Response message.
requestId
string
Unique ID for the request.
resultCount
int
Number of results found
hits
decimal
Number of credits deducted from your API usage balance for this call
- Source
- JSON
var body = {};
var options = {
method: 'POST',
body: JSON.stringify(body),
headers: {
'x-api-key': 'test_examp****'
}
};
var url = 'https://api.propertyreach.com/v1/linked-properties';
fetch(url, options)
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.log('error', error));
{
}